home *** CD-ROM | disk | FTP | other *** search
/ Computer Arts Interactive 4 / CARTS4.iso / mac / MiniCad 6.0.1 demo / MiniCad 6.0.1 Demo / MiniCad 6.0.1 Demo.rsrc / STR#_7017.txt < prev    next >
Text File  |  1996-03-22  |  5KB  |  185 lines

  1. Returns the start and end height of the wall connected to h.
  2.  
  3. WallHeight(h:HANDLE;VAR start,end:REAL);
  4.  
  5. Returns the width of the wall connected to h.
  6.  
  7. WallWidth(h:HANDLE):REAL;
  8.  
  9. Returns the X, Y center of the object that is connected to h.
  10.  
  11. HCenter(h : Handle; VAR X, Y : REAL);
  12.  
  13. Returns the angle of the object that is connected to h.
  14.  
  15. HAngle(h : Handle) : REAL;
  16.  
  17. Returns the height of the object that is connected to h.
  18.  
  19. HHeight(h : Handle) : REAL;
  20.  
  21. Returns the width of the object that is connected to h.
  22.  
  23. HWidth(h : Handle) : REAL;
  24.  
  25. Returns the length of the object that is connected to h.
  26.  
  27. HLength(h : Handle) : REAL;
  28.  
  29. Returns the perimeter of the object that is connected to h.
  30.  
  31. HPerim(h : Handle) : REAL;
  32.  
  33. Returns the area of the object that is connected to h.
  34.  
  35. HArea(h : Handle) : REAL;
  36.  
  37. Returns the alignment of the spreadsheet cell specified by Row, Column.
  38.  
  39. GetCAlign(h : Handle; Row, Column : INTEGER) : INTEGER;
  40.  
  41. Returns the width of the spreadsheet cell specified by Row, Column.
  42.  
  43. GetCWidth(h : Handle; Row, Column : INTEGER) : INTEGER;
  44.  
  45. Returns the number contained in the spreadsheet cell specified by Row, Column.
  46.  
  47. GetCellNum(h : Handle; Row, Column : INTEGER) : REAL;
  48.  
  49. Returns the string contained in the spreadsheet cell specified by Row, Column.
  50.  
  51. GetCellStr(h : Handle; Row, Column : INTEGER) : STRING;
  52.  
  53. Returns TRUE if the spreadsheet cell specified by Row, Column contains a string; otherwise it returns FALSE.
  54.  
  55. CellHasStr(h : Handle; Row, Column : INTEGER) : BOOLEAN;
  56.  
  57. Returns TRUE if the spreadsheet cell specified by Row, Column contains a number; otherwise it returns FALSE.
  58.  
  59. CellHasNum(h : Handle; Row, Column : INTEGER) : BOOLEAN;
  60.  
  61. Returns the number of rows and columns of a spreadsheet that is connected to h.
  62.  
  63. SprdSize(h : Handle; VAR Rows, Columns : INTEGER);
  64.  
  65. Returns the Height, Width, Depth of a 3D object that is connected to ObjectHandle.
  66.  
  67. Get3DInfo(h : Handle; VAR Height, Width, Depth : REAL);
  68.  
  69. Returns the X, Y, Z center of a 3D object that is connected to h.
  70.  
  71. Get3DCntr(h : Handle; VAR X, Y, Z : REAL);
  72.  
  73. Returns the X, Y location of the IndexΓÇÖth vertex of the polygon that h is connected to.
  74.  
  75. GetPolyPt(ObjectHandle : HANDLE;  Index : INTEGER; VAR X, Y : REAL);
  76.  
  77. Returns the number of vertices in the polygon that h is connected to.
  78.  
  79. GetVertNum(h : Handle) : INTEGER;
  80.  
  81. Returns the start angle and arc angle of an arc that is connected to h.
  82.  
  83. GetArc(h : Handle; VAR StartAngle, ArcAngle : REAL);
  84.  
  85. Returns the horizontal and vertical diameters of a rounded corner of a Rounded Rectangle that is connected to h.
  86.  
  87. GetRRDiam(h : Handle; VAR HorDiameter, VerDiameter : REAL);
  88.  
  89. Returns the X, Y coordinate of a locus that is connected to h.
  90.  
  91. GetLocPt(h : Handle; VAR X,Y : REAL);
  92.  
  93. Returns the rotation of a symbol instance that is connected to h.
  94.  
  95. GetSymRot(h : Handle) : REAL;
  96.  
  97. Returns the symbol name of the symbol that is connected to h.
  98.  
  99. GetSymName(h : Handle) : STRING;
  100.  
  101. Returns the dimension text of the object that is connected to h.
  102.  
  103. GetDimText(h : Handle) : STRING;
  104.  
  105. Returns TRUE if the object connected to h has dimension text, otherwise it returns FALSE.
  106.  
  107. HasDim(h : Handle) : BOOLEAN;
  108.  
  109. Returns the second end point of a line that h is connected to.
  110.  
  111. GetSegPt2(h : Handle; VAR X, Y : REAL);
  112.  
  113. Returns the first end point of a line that h is connected to.
  114.  
  115. GetSegPt1(h : Handle; VAR X, Y : REAL);
  116.  
  117. Returns the text within a text object that h is connected to.
  118.  
  119. GetText(h : Handle) : STRING;
  120.  
  121. Returns TRUE if the object that is connected to h is selected, otherwise it returns FALSE.
  122.  
  123. Selected(h : Handle) : BOOLEAN;
  124.  
  125. Returns the justification of text connected to h.
  126.  
  127. GetTextJust(h:HANDLE;VAR Just:INTEGER);
  128.  
  129. Returns style of text connected to h.
  130.  
  131. GetStyle(h : Handle) : INTEGER;
  132.  
  133. Returns point size of text connected to h.
  134.  
  135. GetSize(h : Handle) : INTEGER;
  136.  
  137. Returns font ID of text connected to h.
  138.  
  139. GetFont(h : Handle) : INTEGER;
  140.  
  141. Returns the pen background of the object connected to h.
  142.  
  143. GetPenBack(h:HANDLE;VAR red,green,blue:LONGINT);
  144.  
  145. Returns the pen foreground of the object connected to h.
  146.  
  147. GetPenFore(h:HANDLE;VAR red,green,blue:LONGINT);
  148.  
  149. Returns the line style of the object that is connected to h.
  150.  
  151. GetLS(h : Handle) : INTEGER;
  152.  
  153. Returns the line weight, in mils, of the object connected to h.
  154.  
  155. GetLW(h : Handle) : INTEGER;
  156.  
  157. Returns the fill pattern of the object connected to h.
  158.  
  159. GetFPat(h : Handle) : INTEGER;
  160.  
  161. Returns the fill background of the object connected to h.
  162.  
  163. GetFillBack(h:HANDLE;VAR red,green,blue:LONGINT);
  164.  
  165. Returns the fill foreground of the object connected to h.
  166.  
  167. GetFillFore(h:HANDLE;VAR red,green,blue:LONGINT);
  168.  
  169. Receives a handle to an object and returns the coordinates of the bounding box in X1, Y1, X2, Y2.
  170.  
  171. GetBBox(h : Handle; VAR X1, Y1, X2, Y2 : REAL);
  172.  
  173. Returns the class of the object that h is connected to.
  174.  
  175. GetClass(h : Handle) : STRING;
  176.  
  177. Returns the name of the object that h is connected to.
  178.  
  179. GetName(h : Handle) : STRING;
  180.  
  181. Returns the object type that h is connected to.
  182.  
  183. GetType(h : Handle) : INTEGER;
  184.  
  185.